home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / t_sys5 / 92052tar.gz / 920528.tar / time.h < prev    next >
C/C++ Source or Header  |  1992-05-18  |  708b  |  32 lines

  1. /*    Copyright (c) 1984 AT&T    */
  2. /*      All Rights Reserved      */
  3.  
  4. /*    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T    */
  5. /*    The copyright notice above does not evidence any       */
  6. /*    actual or intended publication of such source code.    */
  7. #ident    "@(#)time.h    2.3 - 88/05/27"
  8. /*    3.0 SID #    1.2    */
  9. #include <sys/time.h>
  10. #ifndef _h_TIM
  11. #define _h_TIM
  12. struct    tm {    /* see ctime(3) */
  13.     int    tm_sec;
  14.     int    tm_min;
  15.     int    tm_hour;
  16.     int    tm_mday;
  17.     int    tm_mon;
  18.     int    tm_year;
  19.     int    tm_wday;
  20.     int    tm_yday;
  21.     int    tm_isdst;
  22. };
  23. extern struct tm *gmtime(), *localtime();
  24. extern char *ctime(), *asctime();
  25. int  cftime(),  ascftime();
  26. extern void tzset();
  27. extern long timezone, altzone;
  28. extern int daylight;
  29. extern char *tzname[];
  30. #endif
  31.  
  32.